065952f889d3ff51c3e8716ed3cd57cc83cf3c83,archetype-java-builders/src/main/resources/archetype-resources/src/main/java/ExampleJLoadScenarioProvider.java,ExampleJLoadScenarioProvider,getFirstJaggerLoadScenario,#,53

Before Change


                .build();
        
        JLoadProfile load = JLoadProfileRps
                .of(RequestsPerSecond.of(10), MaxLoadThreads.of(10), WarmUpTimeInSeconds.of(10));
        JLoadProfile load2 = JLoadProfileRps
                .of(RequestsPerSecond.of(20), MaxLoadThreads.of(20), WarmUpTimeInSeconds.of(20));
        

After Change


                .withValidators(singletonList(NotNullResponseValidator.class))
                .build();
        
        JLoadProfile load = JLoadProfileRps.builder(RequestsPerSecond.of(10)).withMaxLoadThreads(10).withWarmUpTimeInSeconds(10).build();
        JLoadProfile load2 = JLoadProfileRps.builder(RequestsPerSecond.of(20)).withMaxLoadThreads(20).withWarmUpTimeInSeconds(20).build();
        
        JTerminationCriteria termination = JTerminationCriteriaIterations